[Docker] Command Snippets
docker attach
Attach local standard input, output, and error streams to a running container
docker attach [OPTIONS] CONTAINER
CTRL-csends a SIGINT to the container.CTRL-p CTRL-qkey sequence to detach from the container.
docker commit
Create a new image from a container’s changes
docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]